| Conditions | 1 |
| Total Lines | 10 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import React from 'react'; |
||
| 26 | |||
| 27 | export default function ProTip() { |
||
| 28 | const classes = useStyles(); |
||
| 29 | return ( |
||
| 30 | <Typography className={classes.root} color="textSecondary"> |
||
| 31 | <LightBulbIcon className={classes.lightBulb} /> |
||
| 32 | Pro tip: See more{' '} |
||
| 33 | <Link href="https://material-ui.com/getting-started/templates/">templates</Link> on the |
||
| 34 | Material-UI documentation. |
||
| 35 | </Typography> |
||
| 36 | ); |
||
| 38 |